home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 December / Chip_1999-12_cd.bin / zkuste / MacOS / FILES / MARI.SIT / Mariner 4.0 folder / MarinerÆ 4.0.rsrc / STR#_552.txt < prev    next >
Text File  |  1999-10-25  |  2KB  |  52 lines

  1. TANH(number)
  2. Returns the hyperbolic tangent of a number.
  3.  
  4. TAN(number)
  5. Returns the tangent of a number.
  6.  
  7. SINH(number)
  8. Returns the hyperbolic sine of a number.
  9.  
  10. SIN(number)
  11. Returns the sine of a number.
  12.  
  13. RADIANS(number)
  14. Returns number converted to radians.
  15.  
  16. PI
  17. Returns the numeric contant 3.14159... accurate to 16 decimal places.
  18.  
  19. DEGREES(number)
  20. Returns number converted to degrees.
  21.  
  22. COT(number)
  23. Returns the cotangent of number. number is the size of an angle in radians.
  24.  
  25. COSH(number)
  26. Returns the hyperbolic cosine of a number. 
  27.  
  28. COS(number)
  29. Returns the cosine of a number. The result is within the range of -1 and +1.
  30.  
  31. ATAN2(x,y)
  32. Returns the arctangent of the point (x,y) in radians. The arctangent is the angle determined by the point with x and y coordinates.  The result is within the range of -pi and +pi.
  33.  
  34. ATANH(number)
  35. Returns the inverse hyperbolic tangent of number.
  36.  
  37. ATAN(number)
  38. Returns the arctangent of a number. The arctangent is the angle the tangent of which is the number you specify.  The result is within the range of -pi/2 and +pi/2.
  39.  
  40. ASINH(number)
  41. Returns the inverse hyperbolic sine of a number.
  42.  
  43. ASIN(number)
  44. Returns the arcsine of a number. The arcsine is the angle the sine of which is the number you specify. The result is between -pi/2 and +pi/2, inclusive, number should be within the range of -1 and +1.
  45.  
  46. ACOSH(number)
  47. Returns the inverse hyperbolic cosine of a number.
  48.  
  49. ACOS(number)
  50. Returns the arccosine of a number. The arccosine is the angle the cosine of which is the number you specify. The result is between 0 and +pi, inclusive, number should be within the range of -1 and +1.
  51.  
  52.